home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-02-13 | 2.0 KB | 67 lines | [TEXT/MPS ] |
- /*
- File: AboutBox.r
-
- Contains: Resources for the OpenDoc About Box
-
- Owned by: Chris Linn
-
- Copyright: © 1993 - 1996 by Apple Computer, Inc., all rights reserved.
-
- Change History (most recent first):
-
- <1> 10/4/96 CSL first checked in
- */
-
- #define SystemSevenOrBetter 1 // we want the extended types
- #define SystemSevenOrLater 1 // Types.r uses this variable
-
- #define oldTemp // to get 'dctb' resources to rez
- #ifndef __TYPES_R__
- #include "Types.r"
- #endif
- #undef oldTemp
-
- #ifndef _DLGDEFS_
- #include "DdgDefs.h"
- #endif
-
- //-------------------------------------------------------------------------------------
- // OpenDocâ„¢ About... box
- //-------------------------------------------------------------------------------------
-
- resource 'DLOG' (kODDlgAboutBoxDLOGID) {
- {29, 48, 332, 345},
- dBoxProc,
- visible,
- goAway,
- 0x0,
- kODDlgAboutBoxDLOGID,
- "",
- centerMainScreen
- };
-
- data 'ictb' (kODDlgAboutBoxDLOGID, purgeable /*<eeh> added for 1384356*/) {
- $"0000 0000" /* User item is unaffected */
- $"0005 0008" /* Change font + size of text item */
-
- $"0001" /* Use application font */
- $"0000" /* Plain style [ignored] */
- $"000A" /* 10pt size */
- $"0000" /* Red component [ignored] */
- $"0000" /* Blue component [ignored] */
- $"0000" /* Green component [ignored] */
- $"0000" /* BG Red component [ignored] */
- $"0000" /* BG Blue component [ignored] */
- $"0000" /* BG Green component [ignored] */
- $"0001" /* srcOr mode [ignored] */
- };
-
- #define kAboutBoxIDBase 131
- include "AboutBox.res" 'dctb' (kAboutBoxIDBase + 0) as 'dctb' (kODDlgAboutBoxDLOGID);
- include "AboutBox.res" 'DITL' (kAboutBoxIDBase + 0) as 'DITL' (kODDlgAboutBoxDLOGID);
- include "AboutBox.res" 'PICT' (kAboutBoxIDBase + 0) as 'PICT' (kODDlgAboutBoxDefaultPICTID);
- include "AboutBox.res" 'PICT' (kAboutBoxIDBase + 1) as 'PICT' (kODDlgAboutBoxBWPICTID);
- include "AboutBox.res" 'PICT' (kAboutBoxIDBase + 2) as 'PICT' (kODDlgAboutBox16GrayPICTID);
- include "AboutBox.res" 'PICT' (kAboutBoxIDBase + 3) as 'PICT' (kODDlgAboutBoxBestPICTID);
-
-